home *** CD-ROM | disk | FTP | other *** search
- /* Test port */
-
- if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
-
- address 'EVENMORE.1'
-
- options results
- "GETFILENAME"; say 'Filename='RESULT
- "GETFILESIZE"; say 'Filesize='RESULT
- "GETLINE 2"; say 'Line 2='RESULT
- "GETFONT"; say 'Font='RESULT
-
- "SETFONT Xen/8"
- delay(50)
-
- "ICONIFY"
- delay(50)
-
- "OCCURANCE e"
- say 'E occurs 'RESULT' times'
-
- "CLOSE"
- delay(50)
-
- "ICONIFY"
- delay(200)
-
- "QUIT"
-
- exit
-